home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-1.iso / comm / ftp4w24b.zip / vb / ftp_get.frm < prev    next >
Text File  |  1995-01-03  |  3KB  |  102 lines

  1. VERSION 2.00
  2. Begin Form Get_file 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "Get File"
  6.    ClientHeight    =   2265
  7.    ClientLeft      =   3285
  8.    ClientTop       =   2040
  9.    ClientWidth     =   3180
  10.    ControlBox      =   0   'False
  11.    Height          =   2670
  12.    Left            =   3225
  13.    LinkTopic       =   "Form2"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   2265
  17.    ScaleWidth      =   3180
  18.    Top             =   1695
  19.    Width           =   3300
  20.    Begin CommandButton Cancelget 
  21.       Cancel          =   -1  'True
  22.       Caption         =   "Cancel"
  23.       Height          =   375
  24.       Left            =   2040
  25.       TabIndex        =   4
  26.       Top             =   1560
  27.       Width           =   975
  28.    End
  29.    Begin CommandButton GetFile 
  30.       Caption         =   "Get"
  31.       Default         =   -1  'True
  32.       Height          =   375
  33.       Left            =   120
  34.       TabIndex        =   3
  35.       Top             =   1560
  36.       Width           =   975
  37.    End
  38.    Begin TextBox LocalFile 
  39.       Height          =   285
  40.       Left            =   1320
  41.       TabIndex        =   2
  42.       Text            =   "LocalFile"
  43.       Top             =   840
  44.       Width           =   1695
  45.    End
  46.    Begin TextBox HostFile 
  47.       Height          =   285
  48.       Left            =   1320
  49.       TabIndex        =   1
  50.       Text            =   "HostFile"
  51.       Top             =   240
  52.       Width           =   1695
  53.    End
  54.    Begin Label Label2 
  55.       BackColor       =   &H00C0C0C0&
  56.       Caption         =   "Local File :"
  57.       Height          =   255
  58.       Left            =   120
  59.       TabIndex        =   5
  60.       Top             =   840
  61.       Width           =   1095
  62.    End
  63.    Begin Label Label1 
  64.       BackColor       =   &H00C0C0C0&
  65.       Caption         =   "Host File :"
  66.       Height          =   255
  67.       Left            =   120
  68.       TabIndex        =   0
  69.       Top             =   240
  70.       Width           =   1095
  71.    End
  72. End
  73.  
  74. Sub Cancelget_Click ()
  75.   '
  76.   OKDialog = False
  77.   Unload Get_file
  78.   '
  79. End Sub
  80.  
  81. Sub Form_Load ()
  82.   '
  83.   Get_file!HostFile.Text = ""
  84.   Get_file!LocalFile.Text = ""
  85.   '
  86. End Sub
  87.  
  88. Sub GetFile_Click ()
  89.   '
  90.   Src_nam = Get_file!HostFile.Text
  91.   Dest_nam = Get_file!LocalFile.Text
  92.   '
  93.   If Len(Trim$(Src_nam)) <> 0 And Len(Trim$(Dest_nam)) <> 0 Then
  94.     OKDialog = True
  95.     Unload Get_file
  96.   Else
  97.     MsgBox "You must enter a source and destination name", 64, "Warning"
  98.   End If
  99.   '
  100. End Sub
  101.  
  102.